home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1995 April / Internet Tools.iso / appletalk / netatalk / afs / afskrbsrc.sit.hqx / AFS Kerberos 1.0B0 / bsd / bsd-errno.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-02-25  |  1.7 KB  |  38 lines

  1. /* Additions (most network/socket) to errno.h */
  2.  
  3. #define    ENOTSOCK    38        /* Socket operation on non-socket */
  4. #define    EDESTADDRREQ    39        /* Destination address required */
  5. #define    EMSGSIZE    40        /* Message too long */
  6. #define    EPROTOTYPE    41        /* Protocol wrong type for socket */
  7. #define    ENOPROTOOPT    42        /* Protocol not available */
  8. #define    EPROTONOSUPPORT    43        /* Protocol not supported */
  9. #define    ESOCKTNOSUPPORT    44        /* Socket type not supported */
  10. #define    EOPNOTSUPP    45        /* Operation not supported on socket */
  11. #define    EPFNOSUPPORT    46        /* Protocol family not supported */
  12. #define    EAFNOSUPPORT    47        /* Address family not supported by protocol family */
  13. #define    EADDRINUSE    48        /* Address already in use */
  14. #define    EADDRNOTAVAIL    49        /* Can't assign requested address */
  15.  
  16.     /* operational errors */
  17. #define    ENETDOWN    50        /* Network is down */
  18. #define    ENETUNREACH    51        /* Network is unreachable */
  19. #define    ENETRESET    52        /* Network dropped connection on reset */
  20. #define    ECONNABORTED    53        /* Software caused connection abort */
  21. #define    ECONNRESET    54        /* Connection reset by peer */
  22. #define    ENOBUFS        55        /* No buffer space available */
  23. #define    EISCONN        56        /* Socket is already connected */
  24. #define    ENOTCONN    57        /* Socket is not connected */
  25. #define    ESHUTDOWN    58        /* Can't send after socket shutdown */
  26. #define    ETOOMANYREFS    59        /* Too many references: can't splice */
  27. #define    ETIMEDOUT    60        /* Connection timed out */
  28. #define    ECONNREFUSED    61        /* Connection refused */
  29.  
  30.     /* */
  31. #define    ELOOP        62        /* Too many levels of symbolic links */
  32. #define    ENAMETOOLONG    63        /* File name too long */
  33.  
  34. /* should be rearranged */
  35. #define    EHOSTDOWN    64        /* Host is down */
  36. #define    EHOSTUNREACH    65        /* No route to host */
  37. #define    ENOTEMPTY    66        /* Directory not empty */
  38.